home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / flilib.zip / MAKEFILE < prev    next >
Text File  |  1990-02-20  |  594b  |  23 lines

  1.  
  2. #My favorite flags to Turbo C.  Only one really necessary is -ml for large 
  3. #model.
  4. CFLAGS= -Z -O -w-par -wstv -c -ml -d
  5.  
  6. #Where Turbo C library is on my machine.  You might need to change this line.
  7. LDIR= C:\TC
  8.  
  9. .c.obj:
  10.     tcc $(CFLAGS) $*.c
  11.  
  12. all: play.exe slicefli.exe allflis.exe
  13.     @echo made all fli.lib test programs.
  14.  
  15. play.exe: play.obj
  16.     tlink $(LDIR)\c0l play, play, play, fli $(LDIR)\cl
  17.  
  18. slicefli.exe: slicefli.obj
  19.     tlink $(LDIR)\c0l slicefli, slicefli, slicefli, fli $(LDIR)\cl
  20.  
  21. allflis.exe: allflis.obj
  22.     tlink $(LDIR)\c0l allflis, allflis, allflis, fli $(LDIR)\cl
  23.